How to Play/Pause video or Audio in ReactJS ?
Adding multimedia elements, such as videos and audios, to your ReactJS applications can enhance the overall user experience. One common requirement is to provide controls for playing and pausing these media files. In this article, we’ll explore how to implement play/pause functionality for videos and audios in ReactJS....
read more
How to prevent default behavior in an event callback in React JS ?
React JS provides events to create interactive and responsive user interfaces. One characteristics of event handling is to prevent the default behavior of events in certain cases. This article covers the process of preventing default behavior in event callbacks within React JS....
read more
Create a Card View in React native using react-native-paper
React Native is a framework developed by Facebook for creating native-style apps for iOS & Android under one common language, JavaScript. Initially, Facebook only developed React Native to support iOS. However, with its recent support of the Android operating system, the library can now render mobile UIs for both platforms....
read more
Django – Creating a Multi-Page Website
Django is a python based open-source framework used for web development. Django allows the usage of the M-T-V (Model-Templates-View) architectural pattern for the creation and deployment of a functional website....
read more
Page transition in React.js using Framer Motion
Page transition in React JS while switching and page loading in Routing adds extra animation to the web app. Framer motion provides customizable and easy-to-use animations and gestures for a better appearance and transition effects....
read more
Create a Quiz App with Timer using HTML CSS and JavaScript
In this tutorial, we’ll guide you through the process of building an engaging Quiz App with a built-in timer, utilizing HTML, CSS, and JavaScript. This application is designed to present users with a curated set of questions, each accompanied by a countdown timer, providing an interactive and time-bound quiz experience. Additionally, the app keeps track of users’ progress, creating an immersive and dynamic quiz environment. Let’s get started on creating a captivating Quiz App that combines functionality with an intuitive user interface....
read more
What are type aliases and how to create it in Typescript ?
In Typescript, Type aliases give a type a new name. They are similar to interfaces in that they can be used to name primitives and any other kinds that you’d have to define by hand otherwise. Aliasing doesn’t truly create a new type; instead, it gives that type a new name. Aliasing a primitive isn’t very practical as it’s easy using primitive types, however, it can be used for documentation purposes. Type aliasing is just giving another name for a type. let’s demonstrate a few examples on type Aliasing....
read more
What is PDO in PHP ?
In this article, we will discuss PDO in PHP in detail....
read more
How to listen on port 80 with Node.js ?
Node.js is an open-source and cross-platform JavaScript runtime environment. It is a popular tool for almost any kind of project. To create a server in our backend from Node.js, we need to import ‘http’ module and then call its createServer method to create a server. The server is set to listen on the specified port and hostname. When the server is ready, the callback function is called, in this case informing us that the server is running....
read more
How to Validate Phone Number using jQuery Input Mask Plugin ?
An input mask is a string expression that demonstrates the format of a valid user input value or we can say that it constrains user input. This is very useful if there are certain inputs in forms that require validation. In this article, we will learn how to apply an input mask for validating a phone number in an input element using jQuery....
read more
How to Install PHP Soap Extension?
PHP is a general-purpose scripting language that is mainly used for Web development to built dynamic and interactive web pages. Because of its free availability and efficiency, it is widely used among web developers. It has many extensions to get and use web services to make the website more interactive. One of the famous php extension is the SOAP extension. Simple Object Access Protocol simply called as “SOAP” is a protocol to provide and consume Webservices. The SOAP extension is language and platform independent so, it is widely used and easy to use. It is an XML-based messaging protocol mainly used for message broadcasting. It defines the information which is sent and how it is sent. REST API is the competitor for SOAP extension. Nowadays, REST API is getting popular. You can also use SOAP extensions not only for Web development but also for Mobile applications. So, let us see how to install PHP Soap Extension in this article....
read more
How to write and use for loop in Vue js ?
Vue.js is one of the best frameworks for JavaScript like ReactJS. The VueJS is used to design the user interface layer, it is easy to pick up for any developer. It is compatible with other libraries and extensions as well. If you want to create a single-page application then VueJS is the first choice in my opinion. In the development field, there may be so many issues that can not be solved by using a single library, so the VueJS is compatible with other libraries so you can easily go for it. The VueJS is supported by all popular browsers like Chrome, Firefox, IE, Safari, etc. You can easily compare this library with your favorite libraries....
read more